home *** CD-ROM | disk | FTP | other *** search
- OPT MODULE -> debuglib.e
- OPT EXPORT
- OPT NDDC
- OPT LINK 'e:linklib/debug.lib' -> whatever setup ya got..
- OPT XREF _KGetChar, _KCmpStr, _KGetNum, _KMayGetChar, KPutChar, KPutStr
-
- #macro KCmpStr(string1, string2) (LONG) IS Stores(string1, string2) BUT ASM ' bsr _KStrCmp' BUT Rems(8) BUT D0
- #macro KGetChar() (LONG) IS ASM ' bsr _KGetChar'
- #macro KGetNum() (LONG) IS ASM ' bsr _KGetNum'
- #macro KMayGetChar() (LONG) IS ASM ' bsr _KMayGetChar'
- #macro KPrintF(fstr,...) (VOID) IS Stores(StringF(String(1024), fstr, ...)) BUT KPutStr(Long(A7)) BUT EndString(Long(A7)) BUT Rems(4)
- #macro KPutChar(char) (LONG) IS (D0 := char) BUT ASM ' bsr KPutChar'
- #macro KPutStr(str) (VOID) IS (A0 := str) BUT ASM ' bsr KPutStr'
-
- /* (LS) 2001 YAEC19 */
-
-